
              
/* backgroundanim.css */
       .bg-animation2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.bg-animation2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, #101114 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, #242e36 0%, transparent 60%),
                radial-gradient(circle at 40% 40%, #2c2f31 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
    /* You can adjust the duration for faster/slower pulse */
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.7;
    }
}

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(120deg); }
            66% { transform: translateY(15px) rotate(240deg); }
        }


        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

       

        /* Scroll effects */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

     
        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 15s infinite ease-in-out;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #00d4ff, #0078d4);
            border-radius: 50%;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 20s;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 60px;
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            border-radius: 30px;
            top: 60%;
            right: 15%;
            animation-delay: -5s;
            animation-duration: 25s;
        }

        .shape:nth-child(3) {
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #4ecdc4, #44a08d);
            border-radius: 20px;
            top: 40%;
            left: 20%;
            animation-delay: -10s;
            animation-duration: 18s;
        }

        .shape:nth-child(4) {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #ffeaa7, #fdcb6e);
            border-radius: 50%;
            top: 80%;
            left: 70%;
            animation-delay: -15s;
            animation-duration: 22s;
        }

        .shape:nth-child(5) {
            width: 140px;
            height: 70px;
            background: linear-gradient(45deg, #a29bfe, #6c5ce7);
            border-radius: 35px;
            top: 10%;
            right: 25%;
            animation-delay: -8s;
            animation-duration: 28s;
        }

        .shape:nth-child(6) {
            width: 90px;
            height: 90px;
            background: linear-gradient(45deg, #fd79a8, #e84393);
            border-radius: 15px;
            top: 70%;
            left: 5%;
            animation-delay: -12s;
            animation-duration: 16s;
        }

        .shape:nth-child(7) {
            width: 110px;
            height: 55px;
            background: linear-gradient(45deg, #00b894, #00a085);
            border-radius: 27px;
            top: 30%;
            right: 40%;
            animation-delay: -3s;
            animation-duration: 24s;
        }

        .shape:nth-child(8) {
            width: 75px;
            height: 75px;
            background: linear-gradient(45deg, #e17055, #d63031);
            border-radius: 50%;
            top: 50%;
            left: 80%;
            animation-delay: -18s;
            animation-duration: 19s;
        }
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
  background: linear-gradient(135deg, #525963 0%, #313C42 40%, #101818 100%);
     opacity: 1;
}

 @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes glow {
            from {
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            }
            to {
                text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
            }
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }

     

        @keyframes float {
            0% { 
                transform: translateY(0px) translateX(0px) rotate(0deg);
                opacity: 0.1;
            }
            25% { 
                transform: translateY(-50px) translateX(30px) rotate(90deg);
                opacity: 0.2;
            }
            50% { 
                transform: translateY(-20px) translateX(-40px) rotate(180deg);
                opacity: 0.15;
            }
            75% { 
                transform: translateY(-80px) translateX(20px) rotate(270deg);
                opacity: 0.25;
            }
            100% { 
                transform: translateY(0px) translateX(0px) rotate(360deg);
                opacity: 0.1;
            }
        }

    